/* General Reset and Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
    background-color: #f7f9fb;
    line-height: 1.6;
}

/* Navigation */
nav {
    background-color: #00796b;
    position: fixed;
    width: 100%;
    z-index: 10;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

.sign-in-btn {
    background-color: #ffd700;
    color: #00796b;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sign-in-btn:hover {
    background-color: #f4c400;
}

/* Intro Section */
.Intro {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(to right, #00796b, #004d40);
    color: white;
    text-align: center;
}

.Intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    max-width: 80%;
}

.Intro-content {
    max-width: 50%;
    text-align: center;
}

.Intro-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.Intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.Intro-buttons .primary-btn {
    background-color: #ffd700;
    color: #004d40;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.Intro-buttons .primary-btn:hover {
    background-color: #f4c400;
    transform: translateY(-3px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.Intro-buttons .secondary {
    background-color: #f8f7f4;
    color: #004d40;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.Intro-buttons .secondary:hover {
    background-color: #fa2e2e;
    transform: translateY(-3px);
    color: #f8f7f4;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Intro Image */
.Intro-image img {
    width: 30%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

/* Features Section */
.features-section {
    padding: 8rem 4rem;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #00796b;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #f7f9fb;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: #00796b;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Statistics Section */
.stats-section {
    background-color: #004d40;
    color: white;
    padding: 8rem 4rem;
}

.section-title1 {
    color: #ffd700;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    background-color: #00796b;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    color: #ffd700;
    font-weight: bold;
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 4rem;
    background-color: #f7f9fb;
}

.testimonials-carousel {
    display: flex;
    justify-content: center;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.testimonial {
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial h4 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #00796b;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #00796b;
    color: white;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    color: #2c3e50;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00796b;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background-color: #ffd700;
    color: #00796b;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #f4c400;
    transform: translateY(-3px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

.footer p {
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .Intro {
        flex-direction: column;
        text-align: center;
    }

    .Intro-content {
        max-width: 90%;
    }

    .Intro-image img {
        width: 50%;
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat,
    .feature-card {
        padding: 1.5rem;
    }
}
